home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.text;
-
- import java.awt.event.ActionEvent;
-
- public class DefaultEditorKit$InsertTabAction extends TextAction {
- public DefaultEditorKit$InsertTabAction() {
- super("insert-tab");
- }
-
- public void actionPerformed(ActionEvent e) {
- JTextComponent target = ((TextAction)this).getTextComponent(e);
- if (target != null) {
- target.replaceSelection("\t");
- }
-
- }
- }
-